home *** CD-ROM | disk | FTP | other *** search
- ' ******************************************************************************
- ' * *
- ' * Hide-O-Rama *
- ' * *
- ' * By Greg "Maddog" Knauss *
- ' * Copyright © 1991 Antic Publishing *
- ' * *
- ' ******************************************************************************
- '
- ' Do doese DIMs dere...
- '
- DIM file$(9),filename$(999),file_len%(999),attribute|(999)
- DIM seconds|(999),minutes|(999),hours|(999)
- DIM day|(999),month|(999),year|(999)
- '
- ' GEM defines
- '
- LET dolores&=0 !RSC_TREE
- LET title&=2 !Obj in #0
- LET hidden&=5 !Obj in #0
- LET system&=6 !Obj in #0
- LET protect&=7 !Obj in #0
- LET fileback&=9 !Obj in #0
- LET file1&=10 !Obj in #0
- LET file2&=11 !Obj in #0
- LET file3&=12 !Obj in #0
- LET file4&=13 !Obj in #0
- LET file5&=14 !Obj in #0
- LET file6&=15 !Obj in #0
- LET file7&=16 !Obj in #0
- LET file8&=17 !Obj in #0
- LET file9&=18 !Obj in #0
- LET upbutton&=19 !Obj in #0
- LET drivea&=21 !Obj in #0
- LET driveb&=22 !Obj in #0
- LET drivec&=23 !Obj in #0
- LET drived&=24 !Obj in #0
- LET drivee&=25 !Obj in #0
- LET drivef&=26 !Obj in #0
- LET driveg&=27 !Obj in #0
- LET driveh&=28 !Obj in #0
- LET drivei&=29 !Obj in #0
- LET drivej&=30 !Obj in #0
- LET drivek&=31 !Obj in #0
- LET drivel&=32 !Obj in #0
- LET drivem&=33 !Obj in #0
- LET driven&=34 !Obj in #0
- LET driveo&=35 !Obj in #0
- LET drivep&=36 !Obj in #0
- LET track&=37 !Obj in #0
- LET slider&=38 !Obj in #0
- LET reread&=39 !Obj in #0
- LET close&=40 !Obj in #0
- LET dnbutton&=41 !Obj in #0
- LET quit&=42 !Obj in #0
- LET pathback&=43 !Obj in #0
- LET path&=44 !Obj in #0
- '
- ' Filetype defines
- '
- type_protect%=0
- type_hidden%=1
- type_system%=2
- type_diskname%=3
- type_folder%=4
- type_archive%=5
- '
- ' GEM OB_STATE or OB_FLAGS defines
- '
- LET selected%=0
- LET disabled%=3
- LET touchexit%=6
- '
- ' Do the dialog stuff **********************************************************
- '
- ' Load up the resource file and do it's all set up
- '
- IF RSRC_LOAD("HIDORAMA.RSC")=FALSE THEN
- ALERT 3," | Couldn't load HIDORAMA.RSC! | ",1," Cancel ",dummy%
- EDIT
- ENDIF
- VOID RSRC_GADDR(0,0,tree%)
- VOID FORM_CENTER(tree%,x%,y%,w%,h%)
- '
- ' Determine the active drives 'n set 'em
- '
- drives%=BIOS(10)
- FOR i%=0 TO 15
- IF BTST(drives%,i%)=FALSE THEN
- object_state(drivea&+i%,disabled%,TRUE,FALSE)
- ENDIF
- NEXT i%
- '
- ' Turn the current drive button on and show its path
- '
- path$=CHR$(GEMDOS(25)+65)+":"+DIR$(GEMDOS(25)+1)
- object_state(GEMDOS(25)+drivea&,selected%,TRUE,FALSE)
- new_path(FALSE)
- '
- ' Get the directory
- '
- new_dir(FALSE)
- '
- ' Draw the dialog
- '
- VOID OBJC_DRAW(tree%,0,2,x%,y%,w%,h%)
- '
- ' Maken dur mousen un punter
- '
- DEFMOUSE 0
- '
- ' ******************************************************************************
- ' Main loop
- ' ******************************************************************************
- '
- DO
- '
- ' Get what GEM returns
- '
- old_input%=input%
- input%=FORM_DO(tree%,0)
- '
- ' Change drive ***************************************************************
- '
- IF input%>=drivea& AND input%<=drivep& THEN
- '
- ' Show the new drive
- '
- path$=CHR$(input%-drivea&+65)+":"+DIR$(input%-drivea&+1)
- new_path(TRUE)
- '
- ' Get the new directory
- '
- ' object_draw(fileback&)
- new_dir(TRUE)
- ELSE IF input%>=file1& AND input%<=file9& AND old_input%<>input%
- '
- ' Name action **************************************************************
- '
- file%=first%+input%-file1&
- attributes%=attribute|(file%)
- '
- ' Folder
- '
- IF BTST(attribute|(file%),type_folder%)=TRUE THEN
- '
- ' Get new path
- '
- path$=path$+"\"+filename$(file%)
- new_path(TRUE)
- '
- ' Redraw the files
- '
- ' object_draw(fileback&)
- new_dir(TRUE)
- ELSE
- '
- ' Filename
- '
- ' If the buttons at the top are disabled, turn them all on
- '
- IF BTST(OB_STATE(tree%,hidden&),disabled%)=TRUE THEN
- object_flags(hidden&,touchexit%,TRUE,FALSE)
- object_flags(system&,touchexit%,TRUE,FALSE)
- object_flags(protect&,touchexit%,TRUE,FALSE)
- object_state(hidden&,disabled%,FALSE,FALSE)
- object_state(system&,disabled%,FALSE,FALSE)
- object_state(protect&,disabled%,FALSE,FALSE)
- object_state(hidden&,selected%,BTST(attributes%,type_hidden%),TRUE)
- object_state(system&,selected%,BTST(attributes%,type_system%),TRUE)
- object_state(protect&,selected%,BTST(attributes%,type_protect%),TRUE)
- ELSE
- '
- ' Turn each button on as need be
- '
- IF BTST(OB_STATE(tree%,hidden&),selected%)<>BTST(attributes%,type_hidden%) THEN
- object_state(hidden&,selected%,BTST(attributes%,type_hidden%),TRUE)
- ENDIF
- IF BTST(OB_STATE(tree%,system&),selected%)<>BTST(attributes%,type_system%) THEN
- object_state(system&,selected%,BTST(attributes%,type_system%),TRUE)
- ENDIF
- IF BTST(OB_STATE(tree%,protect&),selected%)<>BTST(attributes%,type_protect%) THEN
- object_state(protect&,selected%,BTST(attributes%,type_protect%),TRUE)
- ENDIF
- ENDIF
- ENDIF
- ELSE IF input%=close&
- '
- ' Close button *************************************************************
- '
- ' Turn the button off
- '
- object_state(close&,selected%,FALSE,TRUE)
- '
- ' Get the new path
- '
- IF LEN(path$)>2 THEN
- '
- ' Show the new path
- '
- path$=LEFT$(path$,RINSTR(path$,"\")-1)
- new_path(TRUE)
- '
- ' Redraw the filenames
- '
- ' object_draw(fileback&)
- new_dir(TRUE)
- ENDIF
- ELSE IF input%=reread&
- '
- ' Reread bar ***************************************************************
- '
- ' object_draw(fileback&)
- new_dir(TRUE)
- ELSE IF input%=title&
- '
- ' Title bar ****************************************************************
- '
- ALERT 1," | Formerly D.O.L.O.R.E.S. | ",1," OK ",dummy%
- ELSE IF input%=upbutton&
- '
- ' Up button ****************************************************************
- '
- ' Only move up if we have room
- '
- IF first%>0 THEN
- '
- ' Move the names
- '
- DEC first%
- '
- ' Move the slider position
- '
- SUB slider_y#,slider_step#
- OB_Y(tree%,slider&)=slider_y#
- '
- ' Redraw the names
- '
- show_dir(TRUE)
- ENDIF
- ELSE IF input%=dnbutton&
- '
- ' Down button **************************************************************
- '
- ' Only move if we have room
- '
- IF first%<num_of_files%-8 THEN
- '
- ' Move down one
- '
- INC first%
- '
- ' Move the slider
- '
- ADD slider_y#,slider_step#
- OB_Y(tree%,slider&)=slider_y#
- '
- ' Redraw the names
- '
- show_dir(TRUE)
- ENDIF
- ELSE IF input%=track&
- '
- ' Slider track *************************************************************
- '
- ' Click up a screen
- '
- IF MOUSEY<=@y(slider&)+@y(track&)+@y(dolores&) THEN
- '
- ' Move up a screen
- '
- SUB first%,8
- IF first%<0 THEN
- first%=0
- ENDIF
- '
- ' Reposition the slider
- '
- SUB slider_y#,slider_step#*8
- IF slider_y#<0 THEN
- slider_y#=0
- ENDIF
- OB_Y(tree%,slider&)=slider_y#
- '
- ' Redraw the filenames
- '
- show_dir(TRUE)
- ELSE
- '
- ' Move down a screen
- '
- ADD first%,8
- IF first%>num_of_files%-8 THEN
- first%=num_of_files%-8
- ENDIF
- '
- ' Reposition the slider
- '
- ADD slider_y#,slider_step#*8
- IF slider_y#>@h(track&)-@h(slider&) THEN
- slider_y#=@h(track&)-@h(slider&)
- ENDIF
- OB_Y(tree%,slider&)=slider_y#
- '
- ' Redraw the filenames
- '
- show_dir(TRUE)
- ENDIF
- ELSE IF input%=slider& AND num_of_files%>8
- '
- ' Slider *******************************************************************
- '
- ' Let GEM move the slider
- '
- VOID GRAF_DRAGBOX(@w(slider&),@h(slider&),@h(slider&),@y(slider&)+@y(track&)+@y(dolores&),@x(track&)+@x(dolores&),@y(track&)+@y(dolores&),@w(track&),@h(track&),dummy%,slider_y#)
- '
- ' Adjust returned slider position
- '
- slider_y#=slider_y#-@y(track&)-@y(dolores&)
- '
- ' Find which file is now on top
- '
- first%=slider_y#*(num_of_files%-8)/(@h(track&)-@h(slider&))
- '
- ' Readjust the slider
- '
- slider_y#=first%*(@h(track&)-@h(slider&))/(num_of_files%-8)
- OB_Y(tree%,slider&)=slider_y#
- '
- ' Redraw the files
- '
- show_dir(TRUE)
- ELSE IF input%=quit&
- '
- ' Quit *********************************************************************
- '
- ' Free up the resource
- '
- VOID RSRC_FREE()
- '
- ' And out
- '
- EDIT
- ELSE IF input%=hidden&
- '
- ' Hidden *******************************************************************
- '
- ' Change the attribute
- '
- change_attribute(type_hidden%,hidden&)
- ELSE IF input%=system&
- '
- ' System *******************************************************************
- '
- ' Flip the attribute
- '
- change_attribute(type_system%,system&)
- ELSE IF input%=protect&
- '
- ' Protect ******************************************************************
- '
- ' Toggle it's setting
- '
- change_attribute(type_protect%,protect&)
- ENDIF
- LOOP
- '
- ' ******************************************************************************
- ' Get a new directory
- ' ******************************************************************************
- '
- PROCEDURE new_dir(redraw!)
- '
- ' And move to the new directory
- '
- get_dir(path$+"\*.*")
- '
- ' Show new directory
- '
- input%=0
- first%=0
- show_dir(redraw!)
- RETURN
- '
- ' ******************************************************************************
- ' Shows the directory entries
- ' ******************************************************************************
- '
- PROCEDURE show_dir(redraw!)
- '
- ' Turn the buttons off, if'n we need to
- '
- IF BTST(OB_STATE(tree%,hidden&),disabled%)=FALSE THEN
- object_flags(hidden&,touchexit%,FALSE,FALSE)
- object_flags(system&,touchexit%,FALSE,FALSE)
- object_flags(protect&,touchexit%,FALSE,FALSE)
- object_state(hidden&,selected%,FALSE,FALSE)
- object_state(system&,selected%,FALSE,FALSE)
- object_state(protect&,selected%,FALSE,FALSE)
- object_state(hidden&,disabled%,TRUE,redraw!)
- object_state(system&,disabled%,TRUE,redraw!)
- object_state(protect&,disabled%,TRUE,redraw!)
- ENDIF
- '
- ' Put the names up
- '
- FOR which%=0 TO 8
- '
- ' Are there enough names to fill up this space?
- '
- IF first%+which%<=num_of_files% THEN
- '
- ' Yep, so set up the name
- '
- dot%=INSTR(filename$(first%+which%),".")
- IF dot%>0 THEN
- file$(which%)=LEFT$(" "+LEFT$(LEFT$(filename$(first%+which%),dot%-1)+" ",8)+"."+MID$(filename$(first%+which%)+"___",dot%+1,3)+" ",21)
- ELSE
- file$(which%)=" "+LEFT$(filename$(first%+which%)+"________",8)+".___ "
- ENDIF
- '
- ' Or mark it as a directory
- '
- IF BTST(attribute|(first%+which%),type_folder%)=TRUE THEN
- MID$(file$(which%),1)=CHR$(7)
- ENDIF
- '
- ' Set the appropriate flags
- '
- IF BTST(attribute|(first%+which%),type_hidden%)=TRUE THEN
- MID$(file$(which%),16,1)="H"
- ENDIF
- IF BTST(attribute|(first%+which%),type_system%)=TRUE THEN
- MID$(file$(which%),17,1)="S"
- ENDIF
- IF BTST(attribute|(first%+which%),type_protect%)=TRUE THEN
- MID$(file$(which%),18,1)="P"
- ENDIF
- '
- ' Unset and set stuff
- '
- object_state(file1&+which%,selected%,FALSE,FALSE)
- object_state(file1&+which%,disabled%,FALSE,FALSE)
- object_flags(file1&+which%,touchexit%,TRUE,FALSE)
- ELSE
- '
- ' Dummy space, so blank it out
- '
- object_state(file1&+which%,selected%,FALSE,FALSE)
- object_state(file1&+which%,disabled%,TRUE,FALSE)
- object_flags(file1&+which%,touchexit%,FALSE,FALSE)
- file$(which%)=" "
- ENDIF
- '
- ' Show the name
- '
- box_text(file1&+which%,file$(which%),redraw!)
- NEXT which%
- '
- ' And re-do the slider
- '
- draw_slider(redraw!)
- RETURN
- '
- ' ******************************************************************************
- ' Gets a directory
- ' ******************************************************************************
- '
- PROCEDURE get_dir(a$)
- '
- ' Set number of files
- '
- num_of_files%=-1
- '
- ' Point to the Disk Transfer Address (Where filename comes back) and get
- ' File Not Found/End of Data status
- '
- disk_transfer_address%=FGETDTA()
- status%=FSFIRST(a$,255)
- '
- ' Loop to get filenames
- '
- DO
- '
- ' Out if no more data
- '
- EXIT IF status%<0
- '
- ' We've got another file
- '
- INC num_of_files%
- '
- ' And get filename from memory
- '
- filename$(num_of_files%)=""
- FOR i%=disk_transfer_address%+30 TO disk_transfer_address%+41
- '
- ' Out if this is the end of filename
- '
- EXIT IF PEEK(i%)=0
- '
- ' Add it in
- '
- filename$(num_of_files%)=filename$(num_of_files%)+CHR$(PEEK(i%))
- NEXT i%
- '
- ' Kinda directory is it?
- '
- IF filename$(num_of_files%)="." OR filename$(num_of_files%)=".." THEN
- '
- ' Don't set self or parent directory
- '
- DEC num_of_files%
- ELSE
- '
- ' Get the file's attributes...
- '
- attribute|(num_of_files%)=PEEK(disk_transfer_address%+21)
- '
- ' And ignore it if it's the volume name
- '
- IF BTST(attribute|(num_of_files%),type_diskname%)=TRUE THEN
- DEC num_of_files%
- ELSE
- '
- ' Get the time...
- '
- time%=DPEEK(disk_transfer_address%+22)
- seconds|(num_of_files%)=(time% AND 31)*2
- time%=SHR(time%,5)
- minutes|(num_of_files%)=(time% AND 63)
- time%=SHR(time%,6)
- hours|(num_of_files%)=(time% AND 31)
- '
- ' ...and the date...
- '
- time%=DPEEK(disk_transfer_address%+24)
- day|(num_of_files%)=(time% AND 31)
- time%=SHR(time%,5)
- month|(num_of_files%)=(time% AND 15)
- time%=SHR(time%,4)
- year|(num_of_files%)=(time% AND 127)
- '
- ' ...and the file length
- '
- file_len%(num_of_files%)=DPEEK(disk_transfer_address%+28)
- ENDIF
- ENDIF
- '
- ' Get the status for the next file
- '
- status%=FSNEXT()
- '
- ' 'Round again
- '
- LOOP
- '
- ' And setup the slider
- '
- slider_y#=0
- OB_Y(tree%,slider&)=slider_y#
- '
- ' If there's more than eight files make the slider size proportional
- '
- IF num_of_files%>8 THEN
- '
- ' The size of the slider
- '
- OB_H(tree%,slider&)=9*@h(track&)/(num_of_files%+1)
- '
- ' Set the slider step value
- '
- slider_step#=(@h(track&)-@h(slider&))/(num_of_files%-8)
- ELSE
- '
- ' If there ain't 9 files, make the slider fill the track
- '
- slider_step#=0
- OB_H(tree%,slider&)=@h(track&)
- ENDIF
- RETURN
- '
- ' ******************************************************************************
- ' Changes an object's state
- ' ******************************************************************************
- '
- PROCEDURE object_state(object&,bit%,state!,redraw!)
- IF state!=TRUE THEN
- OB_STATE(tree%,object&)=BSET(OB_STATE(tree%,object&),bit%)
- ELSE
- OB_STATE(tree%,object&)=BCLR(OB_STATE(tree%,object&),bit%)
- ENDIF
- IF redraw!=TRUE THEN
- object_draw(object&)
- ENDIF
- RETURN
- '
- ' ******************************************************************************
- ' Changes an object's flags
- ' ******************************************************************************
- '
- PROCEDURE object_flags(object&,bit%,state!,redraw!)
- IF state!=TRUE THEN
- OB_FLAGS(tree%,object&)=BSET(OB_FLAGS(tree%,object&),bit%)
- ELSE
- OB_FLAGS(tree%,object&)=BCLR(OB_FLAGS(tree%,object&),bit%)
- ENDIF
- IF redraw!=TRUE THEN
- object_draw(object&)
- ENDIF
- RETURN
- '
- ' ******************************************************************************
- ' Changes an object's text
- ' ******************************************************************************
- '
- PROCEDURE object_text(object&,text$,redraw!)
- text$=text$+CHR$(0)
- OB_SPEC(tree%,object&)=V:text$
- IF redraw!=TRUE THEN
- object_draw(object&)
- ENDIF
- RETURN
- '
- ' ******************************************************************************
- ' Changes a box's text
- ' ******************************************************************************
- '
- PROCEDURE box_text(object&,text$,redraw!)
- text$=text$+CHR$(0)
- LPOKE OB_SPEC(tree%,object&),V:text$
- IF redraw!=TRUE THEN
- object_draw(object&)
- ENDIF
- RETURN
- '
- ' ******************************************************************************
- ' Redraws an object
- ' ******************************************************************************
- '
- PROCEDURE object_draw(object&)
- VOID OBJC_DRAW(tree%,object&,0,x%,y%,w%,h%)
- RETURN
- '
- ' ******************************************************************************
- ' Ooo, just skads o' handy routines
- ' ******************************************************************************
- '
- FUNCTION x(object&)
- RETURN OB_X(tree%,object&)
- ENDFUNC
- '
- FUNCTION y(object&)
- RETURN OB_Y(tree%,object&)
- ENDFUNC
- '
- FUNCTION w(object&)
- RETURN OB_W(tree%,object&)
- ENDFUNC
- '
- FUNCTION h(object&)
- RETURN OB_H(tree%,object&)
- ENDFUNC
- '
- ' ******************************************************************************
- ' Draws the path name
- ' ******************************************************************************
- '
- PROCEDURE new_path(redraw!)
- short$=path$
- IF LEN(path$)>34 THEN
- short$="..."+RIGHT$(path$,31)
- ENDIF
- IF redraw!=TRUE THEN
- object_draw(pathback&)
- ENDIF
- object_text(path&,short$,redraw!)
- RETURN
- '
- ' ******************************************************************************
- ' Draws the slider
- ' ******************************************************************************
- '
- PROCEDURE draw_slider(redraw!)
- IF redraw!=TRUE THEN
- object_draw(track&)
- object_draw(slider&)
- ENDIF
- RETURN
- '
- ' ******************************************************************************
- ' Changes a file's attribute, then writes it
- ' ******************************************************************************
- '
- PROCEDURE change_attribute(type%,object&)
- '
- ' Change the attribute
- '
- attribute|(file%)=BCHG(attribute|(file%),type%)
- '
- ' Write it
- '
- file$=path$+"\"+filename$(file%)
- result%=GEMDOS(67,L:V:file$,1,attribute|(file%))
- '
- ' Was there an error?
- '
- IF result%<0 THEN
- '
- ' Yeah, flip the attribute back
- '
- attribute|(file%)=BCHG(attribute|(file%),type%)
- ELSE
- '
- ' Change the button
- '
- OB_STATE(tree%,object&)=BCHG(OB_STATE(tree%,object&),selected%)
- object_draw(object&)
- '
- ' And change the filename flags
- '
- which%=file%-first%
- IF BTST(attribute|(file%),type_hidden%)=TRUE THEN
- MID$(file$(which%),16,1)="H"
- ELSE
- MID$(file$(which%),16,1)=" "
- ENDIF
- IF BTST(attribute|(file%),type_system%)=TRUE THEN
- MID$(file$(which%),17,1)="S"
- ELSE
- MID$(file$(which%),17,1)=" "
- ENDIF
- IF BTST(attribute|(file%),type_protect%)=TRUE THEN
- MID$(file$(which%),18,1)="P"
- ELSE
- MID$(file$(which%),18,1)=" "
- ENDIF
- '
- ' And redraw the filename
- '
- box_text(file1&+which%,file$(which%),TRUE)
- ENDIF
- RETURN
-